home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / msql-2.0.7-1 / msql_update < prev    next >
Text File  |  1999-01-01  |  790b  |  54 lines

  1. ; $VER: Install msql server (31.01.99)
  2. ;
  3. ;    Installer script for the msql server
  4. ;    ©1999 Christophe Sollet
  5. ;
  6.  
  7.     (set UserLevel.old @user-level)
  8.  
  9. ; Initialize messages.
  10.  
  11.     (set #NoPIns "\nIt's an update mSQL distribution. You must have a previous one installed\nand a valid msql: assign\n")
  12.  
  13. ; the install procedure
  14.  
  15.  
  16. ; Copy the distribution
  17. (procedure CopyMsql
  18.     ; Copy all...
  19.     (copyfiles (source "")
  20.                (dest ilocation)
  21.                (all)
  22.     )
  23. )
  24.  
  25. ; The install process begin here.
  26. ; Welcome the user.
  27.  
  28.     (complete 0)
  29.     (welcome)
  30.  
  31.  
  32. ; Msql install dest.
  33.  
  34.     (if 
  35.         (=
  36.             (exists ("msql:") (noreq)) 2)
  37.         (
  38.             (set ilocation "msql:")
  39.         )
  40.         (
  41.             (abort #NoPIns)
  42.         )
  43.     )
  44.  
  45.  
  46. ; Install all
  47.  
  48.     (CopyMsql)
  49.     (complete 100)
  50.  
  51. ; exit
  52.     (set @default-dest ilocation)
  53.     (exit "the Msql Server have been updated\n")
  54.